home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-06-26 | 1.1 KB | 42 lines |
- #
- # Makefile for Alcyon C (version 4.14 required)
- # for use with PD MAKE distributed by us.
- #
- # Jwahar Bammi
- # Fix paths below for your set up
- # c:\include\ Path to include files
- # c:\lib\ Path to C library files
- # Configure your time zone in TYME.C
- # Please use a decent version of gemstart.s that gives some
- # breathing room to malloc()
- # Define RECURSE only if you want the expand a directory
- # to all its children feature for `sz', when you specify
- # a directory name as an arg to `sz'.
- #
- SRC = common.c rz.c sz.c transfer.c util.c main.c tyme.c zm.c fileio.c dummy.c
- OBJ = common.o rz.o sz.o transfer.o util.o main.o tyme.o zm.o fileio.o dummy.o
- INCLUDE = c:\include
- LIB = c:\lib
- CPFLAGS = -i $(INCLUDE)\ -DDECL -DRECURSE
-
- zmdm.prg : $(OBJ) gemstart.o gemlib osbind.o libf
- $(LINKER) [com[lnk]]
- $(RELMOD) zmdm
-
- gemstart.o :
- $(CP) $(LIB)\gemstart.o gemstart.o
-
- osbind.o :
- $(CP) $(LIB)\osbind.o osbind.o
-
- libf :
- $(CP) $(LIB)\libf libf
-
- gemlib :
- $(CP) $(LIB)\gemlib gemlib
-
- $(OBJ) : common.h zmdm.h decl.h
-
- clean:
- $(RM) *.o *.68k
-